home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 22
/
Aminet 22 (1997)(GTI - Schatztruhe)[!][Dec 1997].iso
/
Aminet
/
dev
/
amos
/
amos_col.lha
/
AMOS-COL
/
Info.amos
/
Info.amosSourceCode
Wrap
AMOS Source Code
|
1980-01-10
|
1KB
|
58 lines
'By Delta/Opium
'
'�ukasz �elezny
'ul. W�oska 4D/6
'42-612 Tarnowskie G�ry
'Poland
'
Break Off
If Prg Under<>1 Then ERRS
Set Accessory
Screen Open 0,640,100,4,Hires
Paper 0 : Pen 2 : Curs Off : Cls 0
Locate 0,0 : Centre "Info by DELTA OF CYBERTECH."
Locate 2,2 : Print "Program name : "; : Ask Editor 2 :
If Param$="" Then Print "New project" : Else Print Param$
Locate 2,3 : Print "Number of lines : "; : Ask Editor 5 : Print Param
Locate 2,4 : Print "Current Line : "; : Ask Editor 1 : Print Param
Locate 2,5 : Print "X position : "; : Ask Editor 3 : Print Param
Locate 2,6 : Print "Y position : "; : Ask Editor 4 : Print Param
Locate 2,7 : Print "Free memory for program : "; : Ask Editor 10 : Print Param
Locate 2,9 : Centre "Press any key..."
Y=127
For O=1 To 85
If Y=77 Then Exit
Y=Y-1
Screen Display 0,,Y,,O*2
Wait Vbl
Next
Wait Key
Y=77
For O=50 To 1 Step -1
If Y=127 Then Exit
Y=Y+1
Screen Display 0,,Y,,O*2
Wait Vbl
Next
For A=0 To 7
Trap Screen Close A
Next A
End
Procedure ERRS
Default
Curs Off : Flash Off : Cls 0 : Hide
Paper 0
Centre At(,10)+"This program is only for accesory"
Centre At(,12)+"Press any key"
Wait Key
End
End Proc